textview: Remove some stray debugging output
authorTimm Bäder <mail@baedert.org>
Thu, 18 Jan 2018 20:54:03 +0000 (21:54 +0100)
committerTimm Bäder <mail@baedert.org>
Fri, 19 Jan 2018 07:17:03 +0000 (08:17 +0100)
Leftover from 7046463b880c79b227594a2b35a6c625119d286e

gtk/gtktextview.c

index f9da88784cb8675ad283db5eaf3d4f5274f9f2e6..9679c6568635fbca4ba325fbccd15366a0295cbc 100644 (file)
@@ -4741,8 +4741,6 @@ gtk_text_view_obscure_mouse_cursor (GtkTextView *text_view)
   if (text_view->priv->mouse_cursor_obscured)
     return;
 
-g_print ("obscuring mouse cursor\n");
-
   gtk_widget_set_cursor_from_name (GTK_WIDGET (text_view), "none");
 
   text_view->priv->mouse_cursor_obscured = TRUE;
@@ -4753,7 +4751,6 @@ gtk_text_view_unobscure_mouse_cursor (GtkTextView *text_view)
 {
   if (text_view->priv->mouse_cursor_obscured)
     {
-g_print ("unobscuring mouse cursor\n");
       gtk_widget_set_cursor_from_name (GTK_WIDGET (text_view), "text");
       text_view->priv->mouse_cursor_obscured = FALSE;
     }